-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Capture the property bag from metadata request and pass it to Function load request #8895
Conversation
PR description doesn't include any details or reference any bug for context. Please provide this info so reviewers know what you're trying to accomplish. I.e. fill out the template. |
Apologies for not adding the details early on. I just wanted to get a build going. However, I waited too long to add the details. Going to add them ASAP. |
…e-worker-protobuf. Tag: v1.6.0-protofile Commit: 186030d
17ddd02
to
f3ac6b9
Compare
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
src/WebJobs.Script.Grpc/azure-functions-language-worker-protobuf/src/proto/FunctionRpc.proto
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor comments
/backport to v3.x |
Started backporting to v3.x: https://github.com/Azure/azure-functions-host/actions/runs/3425931008 |
@soninaren backporting to v3.x failed, the patch most likely resulted in conflicts: $ git am --3way --ignore-whitespace --keep-non-patch changes.patch
Applying: Capture the property bag from metadata request and pass it to Function load request
Using index info to reconstruct a base tree...
M src/WebJobs.Script.Grpc/Channel/GrpcWorkerChannel.cs
M test/WebJobs.Script.Tests/Workers/Rpc/GrpcWorkerChannelTests.cs
M test/WebJobs.Script.Tests/Workers/Rpc/TestFunctionRpcService.cs
Falling back to patching base and 3-way merge...
Auto-merging test/WebJobs.Script.Tests/Workers/Rpc/TestFunctionRpcService.cs
CONFLICT (content): Merge conflict in test/WebJobs.Script.Tests/Workers/Rpc/TestFunctionRpcService.cs
Auto-merging test/WebJobs.Script.Tests/Workers/Rpc/GrpcWorkerChannelTests.cs
CONFLICT (content): Merge conflict in test/WebJobs.Script.Tests/Workers/Rpc/GrpcWorkerChannelTests.cs
Auto-merging src/WebJobs.Script.Grpc/Channel/GrpcWorkerChannel.cs
error: Failed to merge in the changes.
hint: Use 'git am --show-current-patch=diff' to see the failed patch
Patch failed at 0001 Capture the property bag from metadata request and pass it to Function load request
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".
Error: The process '/usr/bin/git' failed with exit code 128 Please backport manually! |
resolves #8302
resolves #8898
Pull request checklist
release_notes.md
Additional information
Additional PR information
As part of work for project stein. The function host send a metadata request to the worker process to get the function metadata. That worker would index functions and send the function metadata response. This request is only sent to one worker, however there is indexing related data that needs to be shared between workers.
Proposed solution.